home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / include / linux / dirent.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-12-24  |  177 b   |  13 lines

  1. #ifndef _LINUX_DIRENT_H
  2. #define _LINUX_DIRENT_H
  3.  
  4. struct linux_dirent64 {
  5.     u64        d_ino;
  6.     s64        d_off;
  7.     unsigned short    d_reclen;
  8.     unsigned char    d_type;
  9.     char        d_name[0];
  10. };
  11.  
  12. #endif
  13.